home *** CD-ROM | disk | FTP | other *** search
- package java.util;
-
- class EnumMap$KeySet extends AbstractSet<K> {
- // $FF: synthetic field
- final EnumMap this$0;
-
- private EnumMap$KeySet(EnumMap var1) {
- this.this$0 = var1;
- }
-
- public Iterator<K> iterator() {
- return new EnumMap.KeyIterator(this.this$0, (EnumMap.1)null);
- }
-
- public int size() {
- return EnumMap.access$200(this.this$0);
- }
-
- public boolean contains(Object var1) {
- return this.this$0.containsKey(var1);
- }
-
- public boolean remove(Object var1) {
- int var2 = EnumMap.access$200(this.this$0);
- this.this$0.remove(var1);
- return EnumMap.access$200(this.this$0) != var2;
- }
-
- public void clear() {
- this.this$0.clear();
- }
-
- // $FF: synthetic method
- EnumMap$KeySet(EnumMap var1, EnumMap.1 var2) {
- this(var1);
- }
- }
-